home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _EFD9483D4BDA4A63ADCED4EB41FE2942 < prev    next >
Encoding:
Text File  |  2006-08-04  |  728 b   |  30 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_OuterBevel():
  13.     return {
  14.         'Ambience': 0, 
  15.         'Angle': 135, 
  16.         'Bevel': 0, 
  17.         'Color': (100,208,207), 
  18.         'Depth': 70, 
  19.         'Elevation': 80, 
  20.         'Intensity': 40, 
  21.         'Shininess': 20, 
  22.         'Smoothness': 20, 
  23.         'Width': 20
  24.         }
  25.  
  26. def Do(Environment):
  27.     # Outer Bevel
  28.     App.Do( Environment, 'OuterBevel',         Preset_OuterBevel())
  29.  
  30.